home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / Apps / ScreenSavers / BackSpaceViews / WanderingPolygonView.BackModule / WanderingPolygonViewPart.h < prev    next >
Text File  |  1995-06-12  |  695b  |  33 lines

  1. /*------------------------------------------------------------------------------
  2.     
  3.     WanderingPolygonViewPart.h    Copyright (C) 1991, Karl Kraft;
  4.  
  5.     SYNOPSIS
  6.             This is a module for BackSpace, that wanders a polygon around the screen.
  7.  
  8.     REVISIONS
  9.     
  10. K^2 Karl Kraft  karl@bodi.portal.com
  11.  
  12.     Date            Who        Modification
  13.     11/2/91;        K^2        Released;
  14. ------------------------------------------------------------------------------*/
  15.  
  16. #import    <appkit/View.h>
  17. #define MINPOINTS 2
  18. #define MAXPOINTS 9
  19.  
  20. @interface WanderingPolygonView : View
  21. {
  22.     long NUMPOINTS;
  23.     NXPoint p[MAXPOINTS];
  24.     NXPoint m[MAXPOINTS];
  25.     float r,g,b;
  26.     long steps;
  27. }
  28.  
  29. /*********************************************************************/
  30.  
  31.  
  32. @end
  33.